home *** CD-ROM | disk | FTP | other *** search
- #ifndef _RPCMSG_INCLUDED
-
- #define _RPCMSG_INCLUDED
-
- #include <stdlib.h>
-
- #define MAX_BUF_SIZE 8192
-
- class RPC_MSG {
-
- public:
-
- #ifdef _RPCDC
- __declspec(dllexport)
- #endif
- void autoinit ();
-
- #ifdef _RPCDC
- __declspec(dllexport)
- #endif
- RPC_MSG ();
-
- int running;
- size_t bufsize; // Taille du buffer en cours
- char buffer[MAX_BUF_SIZE]; // Buffer temporaire
- };
-
- #endif
-